projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cda7cf
)
* lisp/emacs-lisp/smie.el (smie-auto-fill): Fix bug#19342
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 6 May 2022 15:09:58 +0000
(11:09 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 6 May 2022 15:09:58 +0000
(11:09 -0400)
lisp/emacs-lisp/smie.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/smie.el
b/lisp/emacs-lisp/smie.el
index 2bab1319132c42d03c9a5e311f2c6fde3564f772..61d52026b383a4cebc75e2458b9d26744f5fc4bf 100644
(file)
--- a/
lisp/emacs-lisp/smie.el
+++ b/
lisp/emacs-lisp/smie.el
@@
-1846,7
+1846,9
@@
to which that point should be aligned, if we were to reindent it.")
(move-to-column fc)
(syntax-ppss))))
(while
- (and (with-demoted-errors "SMIE Error: %S"
+ ;; We silence the error completely since errors are "normal" in
+ ;; some cases and an error message would be annoying (bug#19342).
+ (and (ignore-error scan-error
(save-excursion
(let ((end (point))
(bsf nil) ;Best-so-far.